home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / PhoneNumber.java < prev    next >
Text File  |  1998-08-21  |  619b  |  34 lines

  1. package symantec.itools.awt.util.edit;
  2.  
  3.  
  4. import symantec.itools.awt.FormattedTextField;
  5.  
  6.  
  7. /**
  8.  * An abstract subclass of FormattedTextField for use as various phone numbers.
  9.  *
  10.  *
  11.  * @see symantec.itools.awt.edit.LongDistPhoneNumber
  12.  * @see symantec.itools.awt.edit.LocalPhoneNumber
  13.  *
  14.  * @version 1.0, Nov 26, 1996
  15.  *
  16.  * @author    Symantec
  17.  *
  18.  */
  19.  
  20.  
  21. public abstract class PhoneNumber
  22.     extends FormattedTextField
  23. {
  24.      /**
  25.      * Create new formatted field.
  26.      *
  27.      * @param i number of columns in the field
  28.      */
  29.     protected PhoneNumber(int i)
  30.     {
  31.         super(i);
  32.     }
  33. }
  34.